d55bef1bb89213efe45900b9e909554e53c70599,sslr-core/src/main/java/com/sonar/sslr/impl/matcher/GrammarFunctions.java,Advanced,anyTokenButNot,#Object#,194
Before Change
* Consume the next token if and only if the element doesn't match
*/
public static Matcher anyTokenButNot(Object element) {
return new AnyTokenButNotMatcher(convertToMatcher(element));
}
/**
After Change
* Consume the next token if and only if the element doesn't match
*/
public static Matcher anyTokenButNot(Object element) {
return new SequenceExpression(new NextNotExpression((ParsingExpression) convertToMatcher(element)), AnyTokenExpression.INSTANCE);
}
/**